home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / libg_261.zip / libg_261 / libg++ / etc / graph / ePlotFile.cc < prev    next >
C/C++ Source or Header  |  1993-05-04  |  248b  |  14 lines

  1. #pragma implementation
  2. #include "ePlotFile.h"
  3.  
  4. ePlotFile& ePlotFile:: alabel (alabel_xadj x_adjust,
  5.                    alabel_yadj y_adjust, const char *s)
  6. {
  7.   cmd ('T');
  8.   cmd (x_adjust);
  9.   cmd (y_adjust);
  10.   *this << s;
  11.   *this << "\n";
  12.   return *this;
  13. };
  14.